home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 139 / 139.xpi / chrome / imagezoom.jar / content / about.xul next >
Extensible Markup Language  |  2010-01-04  |  4KB  |  98 lines

  1. <?xml version="1.0"?>
  2. <!-- ***** BEGIN LICENSE BLOCK *****
  3.  
  4.     Copyright (c) 2006-2010  Jason Adams <imagezoom@yellowgorilla.net>
  5.  
  6.     This file is part of Image Zoom.
  7.  
  8.     Image Zoom is free software; you can redistribute it and/or modify
  9.     it under the terms of the GNU General Public License as published by
  10.     the Free Software Foundation; either version 2 of the License, or
  11.     (at your option) any later version.
  12.  
  13.     Image Zoom is distributed in the hope that it will be useful,
  14.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  15.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16.     GNU General Public License for more details.
  17.  
  18.     You should have received a copy of the GNU General Public License
  19.     along with Image Zoom; if not, write to the Free Software
  20.     Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  21.  
  22. ***** END LICENSE BLOCK ***** -->
  23.  
  24. <?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
  25. <?xml-stylesheet href="chrome://net.yellowgorilla.imagezoom/skin/imagezoom.css" type="text/css"?>
  26.  
  27.  <!DOCTYPE window [
  28.    <!ENTITY % imagezoomDTD SYSTEM "chrome://net.yellowgorilla.imagezoom/locale/imageZoom.dtd" >
  29.    %imagezoomDTD;
  30.    <!ENTITY % systemaboutDTD SYSTEM "chrome://mozapps/locale/extensions/about.dtd" >
  31.    %systemaboutDTD;
  32.  ]>
  33.   
  34. <window class="dialog about-dialog"
  35.     title="&iz.product.name; &iz.product.version;"
  36.     orient="vertical"
  37.     autostretch="always"
  38.     onload="net.yellowgorilla.imagezoom.globals.initAbout()"
  39.     xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
  40.  
  41.     <script type="application/x-javascript" src="chrome://net.yellowgorilla.imagezoom/content/globals.js"/>
  42.  
  43. <groupbox align="start" orient="horizontal" class="about-box">
  44.   <vbox>
  45.     <text value="&iz.product.name;" class="main-title" onclick="net.yellowgorilla.imagezoom.globals.openURL('http://imagezoom.yellowgorilla.net/?source=about&version=' + net.yellowgorilla.imagezoom.globals.getAppVersion());" />
  46.     <text id="versionlabel" value="&iz.about.version.label;" class="version"/>
  47.  
  48.     <hbox>
  49.     <vbox>
  50.         <separator class="thin"/>
  51.         <text value="&creator.label;" class="sub-title"/>
  52.         <text value="Jason Adams" class="author"/>
  53.     </vbox>
  54.     <spring flex="1"/>
  55.     <vbox>
  56.         <separator class="thin"/>
  57.         <text value="&contributors.label;" class="sub-title"/>
  58.         <text value="Pierre Soubourou" class="author"/>
  59.         <text value="Leon Zobec" class="author"/>
  60.         <text value="Willy Young" class="author"/>
  61.         <text value="Norah" class="author"/>
  62.         <text value="Markus Fassbender" class="author"/>
  63.         <text value="Balogh Tibor (balti)" class="author"/>
  64.         <text value="Urko" class="author"/>
  65.         <text value="Hunmin Kim" class="author"/>
  66.         <text value="Yamila Gurovich" class="author"/>
  67.         <text value="Pedro" class="author"/>
  68.         <text value="Aycan Demirel" class="author"/>
  69.         <text value="rickcart" class="author"/>
  70.         <text value="Alf" class="author"/>
  71.         <text value="Golanlan" class="author"/>        
  72.         <text value="MozUA" class="author"/>           
  73.     </vbox>
  74.     </hbox>
  75.     
  76.     <separator class="thin"/>
  77.     <text value="&iz.about.help.label;" class="url" onclick="net.yellowgorilla.imagezoom.globals.openURL('http://imagezoom.yellowgorilla.net/help/?source=about&version=' + net.yellowgorilla.imagezoom.globals.getAppVersion());" />
  78.     <text value="&iz.about.help.description;"/>
  79.  
  80.     <separator class="thin"/>
  81.     <text value="&iz.about.forums.label;" class="url" onclick="net.yellowgorilla.imagezoom.globals.openURL('http://imagezoom.yellowgorilla.net/forums/?source=about&version=' + net.yellowgorilla.imagezoom.globals.getAppVersion());" />
  82.  
  83.     <separator class="thin"/>
  84.     <text value="&iz.about.walkthrough.label;" class="url" onclick="net.yellowgorilla.imagezoom.globals.openURL('http://imagezoom.yellowgorilla.net/install/?source=about&version=' + net.yellowgorilla.imagezoom.globals.getAppVersion());" />
  85.     <text value="&iz.about.walkthrough.description;"/>
  86.  
  87.   </vbox>
  88.   <spring flex="1"/>
  89.   <image src="chrome://net.yellowgorilla.imagezoom/skin/imagezoom.png"/>
  90. </groupbox>
  91.  
  92. <hbox>
  93.   <spacer flex="1"/>
  94.   <button label="&iz.about.close.label;" oncommand="window.close();"/>
  95. </hbox>
  96.  
  97. </window>
  98.